From a5414d898be12fbfc0e4e565ef7de2ea0bee0d42 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Wed, 8 Mar 2006 11:18:39 +0100 Subject: [PATCH] Ensure old Python files are overwritten during tools install. Signed-off-by: Akio Takebe --- tools/python/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/python/Makefile b/tools/python/Makefile index ce333cab71..87d08a22e6 100644 --- a/tools/python/Makefile +++ b/tools/python/Makefile @@ -9,10 +9,10 @@ build: ifndef XEN_PYTHON_NATIVE_INSTALL install: all - CFLAGS="$(CFLAGS)" python setup.py install --home="$(DESTDIR)/usr" + CFLAGS="$(CFLAGS)" python setup.py install --home="$(DESTDIR)/usr" --force else install: all - CFLAGS="$(CFLAGS)" python setup.py install --root="$(DESTDIR)" + CFLAGS="$(CFLAGS)" python setup.py install --root="$(DESTDIR)" --force endif test: -- 2.30.2